diff options
| -rw-r--r-- | 3b/psudocode.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/3b/psudocode.txt b/3b/psudocode.txt new file mode 100644 index 0000000..5696f5e --- /dev/null +++ b/3b/psudocode.txt @@ -0,0 +1,7 @@ +get string +s = string +len = string.len +out = "" +for i = len-1; i < 0; i-- + out += s[i] +retrun out
\ No newline at end of file |