mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 11:43:12 +08:00 
			
		
		
		
	移除零宽空格
This commit is contained in:
		@@ -40,20 +40,20 @@
 | 
			
		||||
<strong>解释:</strong> 示例代码可以编排成这样:
 | 
			
		||||
/*Test program */
 | 
			
		||||
int main()
 | 
			
		||||
{ 
 | 
			
		||||
  // variable declaration 
 | 
			
		||||
{
 | 
			
		||||
  // variable declaration
 | 
			
		||||
int a, b, c;
 | 
			
		||||
/* This is a test
 | 
			
		||||
   multiline  
 | 
			
		||||
   comment for 
 | 
			
		||||
   multiline
 | 
			
		||||
   comment for
 | 
			
		||||
   testing */
 | 
			
		||||
a = b + c;
 | 
			
		||||
}
 | 
			
		||||
第 1 行和第 6-9 行的字符串 /* 表示块注释。第 4 行的字符串 // 表示行注释。
 | 
			
		||||
编排后: 
 | 
			
		||||
编排后:
 | 
			
		||||
int main()
 | 
			
		||||
{ 
 | 
			
		||||
  
 | 
			
		||||
{
 | 
			
		||||
 | 
			
		||||
int a, b, c;
 | 
			
		||||
a = b + c;
 | 
			
		||||
}</pre>
 | 
			
		||||
@@ -77,4 +77,4 @@ a = b + c;
 | 
			
		||||
	<li>每个块注释都会被闭合。</li>
 | 
			
		||||
	<li>给定的源码中不会有单引号、双引号或其他控制字符。</li>
 | 
			
		||||
</ul>
 | 
			
		||||
<span style="display:block"><span style="height:0px"><span style="position:absolute"><span style="top:0px"><span style="left:-9999px"><span style="opacity:0"><span style="overflow:hidden"> </span></span></span></span></span></span></span>
 | 
			
		||||
<span style="display:block"><span style="height:0px"><span style="position:absolute"><span style="top:0px"><span style="left:-9999px"><span style="opacity:0"><span style="overflow:hidden"> </span></span></span></span></span></span></span>
 | 
			
		||||
		Reference in New Issue
	
	Block a user