Saturday, November 26, 2022

dotnet core config bashrc

PATH="$PATH:/home/mintozzy/.dotnet/:/home/mintozzy/.local/bin"
export PATH
export DOTNET_ROOT=~/.dotnet

DOTNET_ROOT required for finding .NET runtime.

odd string diff

 https://leetcode.com/problems/odd-string-difference/ Beats 19.92% of users with Java   class Solution { public String oddString ( S...