Byłam najstarsza w licznej rodzinie, dorastając w małej wiosce pod Lublinem. Cały ciężar opieki nad młodszym rodzeństwem spoczął na moich barkach. Gotowałam im, leczyłam przeziębienia, odprowadzałam do przedszkola i szkoły. Rodzice nigdy nie pytali, czy tego chcę – po prostu rzucali: „Musisz!” – i koniec.
Przyjaciół prawie nie miałam. Nie starczało czasu, a rówieśnicy wyśmiewali się, nazywając mnie „nianią” i „popychadłem”. Ich słowa paliły serce, często płakałam, chowając się w stodole. OjYou are given two strings s and t.
String t is generated by random shuffling string s and then add one more letter at a random position.
Return the letter that was added to t.
Example 1:
Input: s = „abcd”, t = „abcde”
Output: „e”
Explanation: 'e’ is the letter that was added.
Example 2:
Input: s = „”, t = „y”
Output: „y”
Constraints:
0 <= s.length <= 1000 t.length == s.length + 1 s and t consist of lowercase English letters. ## Getting Started Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code. ## Folder Structure The workspace contains two folders by default, where: - `src`: the folder to maintain sources - `lib`: the folder to maintain dependencies Meanwhile, the compiled output files will be generated in the `bin` folder by default. > If you want to customize the folder structure, open `.vscode/settings.json` and update the related settings there.
## Dependency Management
The `JAVA PROJECTS` view allows you to manage your dependencies. More details can be found [here](https://github.com/microsoft/vscode-java-dependency#manage-dependencies).



