πΌ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Encoder = struct | |
| let alphabet = "abcdefghijklmnopqrstuvwxyz" | |
| let encode x = | |
| let n = String.length alphabet in | |
| let rec _encode s v = | |
| if v > 0 then _encode (String.make 1 alphabet.[v mod n] ^ s) (v / n) | |
| else s | |
| in _encode "" x | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Json | |
| { | |
| private $json = []; | |
| /** | |
| * Parse json to array | |
| * | |
| * @param string $json JSON string | |
| * @return void |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MY FIRST STORY βββββββββββββββββ 3 plays | |
| Drive βββββββββββββββββ 1 plays | |
| Jamrud βββββββββββββββββ 1 plays |