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 bic_selection(candidates: set, | |
selected: set = None, | |
prev_ic: int = np.inf, | |
prev_ics: list = None, | |
ic_change_threshold: int = 0): | |
if prev_ics is None: | |
prev_ics = [] | |
if selected is None: | |
selected = set() |
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 com.android254.droidconke19.models | |
import com.google.firebase.remoteconfig.FirebaseRemoteConfig | |
data class WifiDetailsModel( | |
var wifiSsid: String, | |
var wifiPassword: String | |
) | |