cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
33927885 33m-subdomain-wordlist.txt
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
/* | |
* Problem: | |
* Given an array of words and a length l, format the text such that each line has exactly l characters and is fully justified on both the left and the right. Words should be packed in a greedy approach; that is, pack as many words as possible in each line. Add extra spaces when necessary so that each line has exactly l characters. | |
* Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line does not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right. For the last line of text and lines with one word only, the words should be left justified with no extra space inserted between them. | |
* Example: | |
* For ["This", "is", "an", "example", "of", "text", "justification."] | |
* and l = 16, the output should be ["This is an", | |
* "example of text", | |
* "justification. "] | |
* |
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
<?php | |
class NgayThangNam { | |
protected $ngay, $thang, $nam; | |
function __construct($ngay = 1, $thang = 1, $nam = 2020) | |
{ | |
if (is_string($ngay) || is_string($thang) || is_string($nam)) { | |
print("Dữ liệu nhập vào không hợp lệ"); | |
return; | |
} |
I hereby claim:
- I am monodyle on github.
- I am monodyle (https://keybase.io/monodyle) on keybase.
- I have a public key ASCcN81DnqgOjuqPaT0p5oyq1I4uGV3Qw-LxS4jSZWyRawo
To claim this, I am signing this object:
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
(() => { | |
/* | |
Author: @MonokaiJsp (MonokaiJs | https://omfg.vn) | |
>>>>>>> Free for Personal Usage. | |
======= Donate me: https://omfg.vn/donate | |
======= Github: https://github.com | |
======= Gists | |
*/ | |