Convert an array of positive integers to a unicode string.
(nums)
| 100 | |
| 101 | |
| 102 | def int2unicode(nums): |
| 103 | """ |
| 104 | Convert an array of positive integers to a unicode string. |
| 105 | """ |
| 106 | return u''.join(chr(i + 1) for i in nums) |
| 107 | |
| 108 | |
| 109 | def trim(diffs): |