This file contains 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
Standard BPE | eBPE | |
---|---|---|
'th' | '\r\n' | |
'the ' | ', ' | |
'an' | 'd ' | |
'in' | 'Th' | |
'ou' | 've' | |
'er' | 'y ' | |
'ed ' | '; ' | |
'ar' | 'f ' | |
'hi' | ',\r\n' |
This file contains 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
Promotion # | Token created | |
---|---|---|
338 | "Mr. Fogg" | |
357 | "Phileas Fogg" | |
360 | "Passepartout" | |
635 | "ir Franc" (Sir Francis) | |
781 | "It was" | |
900 | '" asked' (contains a quote character) |
This file contains 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
package main | |
import ( | |
"time" | |
"net/http" | |
"net/smtp" | |
"fmt" | |
) | |
func sendMail(body string) error{ |
This file contains 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
// Tested on http://writecodeonline.com/php/ | |
$triangle = array( | |
array( | |
3 | |
),array( | |
7, 4 | |
),array( | |
2, 4, 6 | |
),array( | |
8, 5, 9, 3 |
NewerOlder