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
def minimumSwaps(arr): | |
swp = 0 | |
n = len(arr) | |
for i,j in enumerate(arr): | |
if(j != i+1): | |
source_idx = arr.index(i+1) | |
destination_idx = arr.index(j) | |
swp += 1 | |
arr[destination_idx], arr[source_idx] = arr[source_idx], arr[destination_idx] |
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
#!/bin/python | |
import math | |
import os | |
import random | |
import re | |
import sys | |
# Complete the minimumSwaps function below. | |
def minimumSwaps(arr): |
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
#!/bin/python | |
import math | |
import os | |
import random | |
import re | |
import sys | |
# Complete the minimumSwaps function below. | |
def minimumSwaps(arr): |
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
# This file contains examples of some of the things you may want to | |
# include in a user startup file. | |
# handle bash/zsh SHLVL variable | |
(( SHLVL++ )) | |
# skip this setup for non-interactive shells | |
[[ -o interactive && -t 0 ]] || return | |
# disable core dumps |
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
--- src.orig/xfdesktop/src/xfce-desktop.c 2020-11-28 00:28:13.965018899 +0200 | |
+++ src/xfdesktop/src/xfce-desktop.c 2020-11-28 08:04:35.265630011 +0200 | |
@@ -1306,7 +1306,7 @@ | |
} | |
static gboolean | |
-xfce_desktop_button_press_event(GtkWidget *w, | |
+xfce_desktop_button_release_event(GtkWidget *w, | |
GdkEventButton *evt) | |
{ |
OlderNewer