git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			257 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			257 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # reverse :: [Char] -> ()
 | |
| def reverse(xs):
 | |
|     i = 0
 | |
|     j = len(xs) - 1
 | |
|     while i < j:
 | |
|         xs[i], xs[j] = xs[j], xs[i]
 | |
|         i += 1
 | |
|         j -= 1
 | |
| 
 | |
| xs = [list("testing"), list("a"), list("to")]
 | |
| for x in xs:
 | |
|     print(x)
 | |
|     reverse(x)
 | |
|     print(x)
 |